home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmMyMulti
- Caption = "The MyMulti Program"
- ClientHeight = 4020
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7365
- Height = 4425
- Icon = MYMULTI.FRX:0000
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 4020
- ScaleWidth = 7365
- Top = 1140
- Width = 7485
- Begin CommandButton cmdSetData2
- Caption = "Set Data &2"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 495
- Left = 1800
- TabIndex = 3
- Top = 2640
- Width = 3975
- End
- Begin CommandButton cmdSetData
- Caption = "&Set Data"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 495
- Left = 1800
- TabIndex = 2
- Top = 3240
- Width = 3975
- End
- Begin CommandButton cmdExit
- Caption = "E&xit"
- Height = 495
- Left = 360
- TabIndex = 1
- Top = 3240
- Width = 1215
- End
- Begin CommandButton cmdAbout
- Caption = "&About..."
- Height = 495
- Left = 5880
- TabIndex = 0
- Top = 3240
- Width = 1215
- End
- Option Explicit
- Sub cmdAbout_Click ()
- ' MsgBox "(C) Copyright 1994-1995", 64, "About MyMulti"
- ' MsgBox "(C) Copyright 1994-1995", 64, "About MyAbout"
- frmAbout.Show 1
- End Sub
- Sub cmdExit_Click ()
- End
- End Sub
- Sub cmdSetData_Click ()
- frmInput.txtInput.Text = ggUserInput
- frmInput.Show 1
- frmMyMulti.Cls
- Print "You typed: " + ggUserInput
- End Sub
- Sub cmdSetData2_Click ()
- frmIndependent.Show 1
- frmMyMulti.Cls
- Print frmIndependent.txtUserInput.Text
-
- End Sub
- Sub Form_Load ()
- ggUserInput = "Initial Value"
- End Sub
-